Skip test-local-pull.sh.test which suffers from a known bug (#842606)
authorSimon McVittie <smcv@debian.org>
Sun, 15 Jan 2017 14:49:26 +0000 (14:49 +0000)
committerSimon McVittie <smcv@debian.org>
Thu, 19 Jan 2017 12:07:39 +0000 (12:07 +0000)
debian/tests/gnome-desktop-testing

index e3015ccb1a6179c79590658f6e557e610853514f..0bf126ddc1995ba42092552ee4f19aaae22f959f 100755 (executable)
@@ -3,4 +3,20 @@
 set -e
 exec 2>&1
 
-exec gnome-desktop-testing-runner ostree
+e=0
+
+tests="$(gnome-desktop-testing-runner -l ostree | while read t; do
+       t="${t%% *}"
+
+       case "$t" in
+               (ostree/test-local-pull.sh.test)
+                       # frequently times out, https://bugs.debian.org/842606
+                       # https://github.com/ostreedev/ostree/issues/605
+                       continue
+                       ;;
+       esac
+
+       echo "$t"
+done)"
+
+gnome-desktop-testing-runner $tests